home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr10 / tvprompt.zip / ALTSLICE.LIB next >
Text File  |  1990-11-20  |  512b  |  18 lines

  1. with system;
  2.  
  3. package altslice is
  4.  
  5. procedure movmem(source     :in system.address;
  6.                  destination:in system.address;
  7.                  n_bytes    :in system.word);
  8.  
  9. procedure setmem(destination:in system.address;
  10.                  byte_value:in system.byte;
  11.                  n_bytes    :in system.word);
  12.  
  13. procedure setmem(destination:in system.address;
  14.                  word_value:in system.word;
  15.                  n_words    :in system.word);
  16.  
  17. end altslice;
  18.